home *** CD-ROM | disk | FTP | other *** search
/ Inside Mac Games Volume 5 #3 / IMG 46 Vol 5-3.iso / More Goodies / More For Your Game / Realmz / Character Master Source / Nemesis Framework / Headers / nemesis misc utilities.h < prev    next >
Text File  |  1996-07-03  |  689b  |  26 lines

  1. //•••••••••••••••••••••••••••
  2. //•    Written by David Wagner    •
  3. //•    -----------------------    •
  4. //•      Created: 1 Jun 1996    •
  5. //•••••••••••••••••••••••••••
  6.  
  7. #ifndef _NEMESISMISCUTILITIES_    // Check to see if it is already included
  8.     #define _NEMESISMISCUTILITIES_
  9.     
  10. enum
  11. {
  12.     kControlKeyDown        = 28L,
  13.     kOptionKeyDown        = 29L
  14. };
  15.  
  16. Boolean     NemesisIsTrapAvailable( int trapNum );
  17. Boolean        NemesisWithinLimits( long, long, long );
  18. GDHandle    NemesisGetRectsDevice( Rect );
  19. int            NemesisMainDeviceDepth();
  20. Boolean        NemesisSetDimmedColour( Rect, RGBColor & );
  21. void        NemesisRestoreDimmedColour( RGBColor );
  22. Boolean        NemesisOptionKeyDown();
  23. Boolean        NemesisControlKeyDown();
  24. void        NemesisPlaySound( int );
  25.  
  26. #endif